ArgumentOutOfRangeException when sorting a DataGridView using a custom IComparer

101

ArgumentOutOfRangeException when sorting a DataGridView using a custom IComparer -

if (row1.ReadOnly == row2.ReadOnly)  // change && to ==
    {
        return 0;
    }
    else if (row1.ReadOnly && !row2.ReadOnly)
    {
        return 1;
    }
    else
    {
        return -1;
    }

Comments

Submit
0 Comments